* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: white;
    background-size: cover;
    padding-top: 5em;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: 0.3s;
}


/* Navbar Styles */
.nav-container {
    position: fixed;  /* Ensures navbar stays on top */
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 1000; /* Ensures navbar is above all content */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.nav-left, .nav-right {
    display: flex;
    gap: 200px;
    list-style-type: none; /* Remove black dots */
    align-items: center;
}

.nav-left a, 
.nav-right a, 
.dropdown-toggle {
    text-decoration: none;
    color: black;
    padding: 10px 15px;
    transition: color 0.3s;
}

.nav-left a:hover,
.nav-right a:hover,
.dropdown-toggle:hover {
    color: red;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    list-style: none;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    white-space: nowrap;
    color: black;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Logo */
.logo img {
    max-width: 150px;
    height: auto;
}

/* Hamburger Menu */
/* Ensure the menu button is visible */
.menu-btn {
    display: block;
    cursor: pointer;
    font-size: 24px;
    z-index: 1100;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
    }

    .nav-left, .nav-right {
        display: none; /* Initially hidden */
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
    }

    .nav-container.active .nav-left,
    .nav-container.active .nav-right {
        display: flex; /* Show when active */
    }
}




/* Hero Section */
.hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero .text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d52020;
    max-width: 800px;
    line-height: 1.4;
    margin: 0 auto;
    animation: fadeInDown 1.6s ease;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Modern Button Style */
.services button {
    padding: 15px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    background-color: rgb(22, 14, 14);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.services button:hover {
    background-color: rgb(135, 126, 126);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.services a {
    text-decoration: none;
}

/* Simple Fade-in Animation */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Us, Vision-Mission, Clients */
.container { 
    position: relative;
    align-items: center;
    width: 90vw;
    height: 90vh;
    left: 5%;
    opacity: 0;  /* Start hidden */
    transform: translateY(20px); /* Slightly lower */
    transition: opacity 5s ease-in-out, transform 1s ease-in-out;
    text-align: center;
    padding-top: 50%;
}

/* Left Trapezium (About Us) */
.about1 {
    position: absolute;
    bottom: 38%;
    width: 710px;
    height: 500px;
    background-color: black;
    border: 1px solid white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 50px 80px;
    left: calc(50% - 710px - 10px); /* 10px margin on the left */
}

/* Ensure h1 is at the top */
.about1 h1 {
    font-size: 32px;
    color: red;
    font-weight: bold;
    margin-top: 12px;
    margin-bottom: 10px;
}

/* Paragraph should be below the heading */
.about1 p {
    font-size: 18px;
    line-height: 1.4;
    color: white;
}

/* Right Trapezium (Vision & Mission) */
.vision-mission {
    position: absolute;
    bottom: 38%;
    width: 710px;
    height: 500px;
    background-color: black;
    border: 1px solid white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 50px 80px;
    right: calc(50% - 710px - 10px); /* 10px margin on the right */
}

/* Styling for Vision and Mission sections */
.vision, .mission {
    width: 100%;
    text-align: center;
}

/* Vision & Mission Titles */
.vision h1, .mission h1 {
    font-size: 32px;
    color: red;
    font-weight: bold;
    margin-top: 12px;
    margin-bottom: 10px;
}

/* Vision & Mission Paragraphs */
.vision p, .mission p {
    font-size: 18px;
    color: white;
    line-height: 1.6;
    padding: 0;
    margin-top: 0;
    text-align: center;
}

/* Bottom Triangle (Client) */
.clients {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 106%;
    height: 75%;
    background-color: whitesmoke;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    border-bottom: 2px solid black;
    border-left: 2px solid black;
    border-right: 2px solid black;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.clients h1 {
    color: red;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 1;
}

.about1:hover,
.vision-mission:hover,
.clients:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

/* Text Alignment */
.text {
    position: absolute;
    color: #333;
    font-size: 22px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about1 h1, .about1 p {
    transform: none;
}

.vision-mission h1, .vision-mission p {
    transform: none;
    display: block;
}

/* Animation Class */
.animate {
    opacity: 1;
    transform: translateY(0);
}

.animate .about1 {
    opacity: 1;
    transform: translateY(0);
}

.animate .vision-mission {
    opacity: 1;
    transform: translateY(0);
}

.animate .clients {
    opacity: 1;
    transform: translateX(-50%);
}

.animate .text {
    opacity: 1;
}

@media (max-width: 768px) {
    .container {
        width: 100vw;
        height: auto;
        padding-top: 20%;
        left: 0;
    }

    .about1, .vision-mission {
        position: relative;
        width: 90%;
        height: auto;
        padding: 30px 20px;
        margin: 20px auto;
        bottom: auto;
        left: auto;
        right: auto;
    }

    .about1 h1, .vision h1, .mission h1 {
        font-size: 24px;
    }

    .about1 p, .vision p, .mission p {
        font-size: 16px;
        line-height: 1.5;
    }

    .clients {
        position: relative;
        width: 100%;
        height: auto;
        clip-path: none;
        border: none;
        padding: 40px 20px;
        box-shadow: none;
        transform: translateX(0);
    }

    .clients h1 {
        font-size: 24px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        text-align: center;
    }
}
/* About Us, Vision-Mission, Clients */

/* Director Description Starts */
.Director { 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 15px;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

.Director-image {
    flex: 1;
    max-width: 600px;
    display: flex;
    justify-content: center;
}

.Director-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 0px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.Director-text {
    flex: 2;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    padding: 10px;
    border-radius: 10px;
    text-align: justify;
}

.Director-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .Director {
        flex-direction: column;
        padding: 15px;
        gap: 20px;
    }

    .Director-text {
        text-align: center;
    }

    .Director-image img {
        max-width: 80%;
    }

    .Director-text h3 {
        font-size: 1.2rem;
    }
}
/* Director Description Ends */


/*our achievements starts here*/
.achievements-container {
    text-align: center;
    padding: 20px;
}

.main-heading {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: red;
}

.achievements-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}

.left-side, .right-side {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    background: #f4f4f4;
}

h2 {
    font-size: 1.8em;
    font-weight: bold;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: justify;
    padding-bottom: 40px;
}

.cipm-images {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align images to the left */
    gap: 20px;
}

.cipm-images img:first-child {
    align-self: flex-start; /* Move first image to the left */
    width: 65%; /* Adjust width as needed */
}

.cipm-images img:nth-child(2) {
    width: 65%; /* Centered image below first */
    align-self: center;
}

.cipm-images img:last-child {
    width: 65%; /* Slightly larger third image */
    align-self: flex-end; /* Move last image to the right */
}


.usfs-images {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Align images to the right */
    gap: 20px;
}

.usfs-images img:first-child {
    align-self: flex-end; /* Move first image to the right */
    width: 65%; /* Adjust width as needed */
}

.usfs-images img:nth-child(2) {
    width: 65%; /* Centered image below first */
    align-self: center;
}

.usfs-images img:last-child {
    width: 65%; /* Slightly larger third image */
    align-self: flex-start; /* Move last image to the left */
}


@media (max-width: 768px) {
    .achievements-content {
        flex-direction: column;
    }

    .cipm-images img, .usfs-images img {
        width: 45%;
    }
}
/*our achievements ends here*/

/*Contactus page start*/
/* Gallery Section */
.image-gallery {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
}

.gallery-image {
    width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Contact Info Section */
.contact-info-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 30px auto;
    max-width: 90%;
}

/* Office Info Styling */
.office-info {
    background-color: white;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    text-align: center;
    width: 48%;
    border-radius: 10px;
}

.office-info h1 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #222;
}

.office-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #444;
}

.office-info p {
    font-size: 1.1rem;
    text-align: left;
    display: flex;
    align-items: flex-start; /* align top in case it wraps */
    gap: 10px;
    margin: 10px 0;
    flex-wrap: wrap; /* Allow wrapping */
    word-break: break-word; /* Break long strings like email */
    overflow-wrap: break-word;
}

/* Icons Styling */
.office-info p i {
    color: red;
    font-size: 1.3rem;
}

/* Email Link Styling */
.office-info a {
    color: red;
    text-decoration: none;
    transition: color 0.3s;
}

.office-info a:hover {
    color: red;
}

@media (max-width: 768px) {
    .contact-info-container {
        flex-direction: column;
        align-items: center;
    }

    .office-info {
        width: 100%;
        padding: 20px;
    }

    .office-info p {
        flex-direction: column; /* stack icon and text for smaller screens */
        align-items: flex-start;
    }
}


/* Map Section */
.map {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 48%;
    border-radius: 10px;
}

.map h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
}

.map p {
    font-size: 1.1rem;
    color: #444;
}

.map-container img {
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.map-container img:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        padding: 30px 10px;
    }
    
    .contact-info-container {
        flex-direction: column;
        align-items: center;
    }

    .office-info, .map {
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
    }

    .image-gallery {
        flex-direction: row;
        justify-content: space-around;
        gap: 10px;
    }

    .gallery-image {
        width: 30%;
    }
}

/*Contactus page over/finish here*/

/*Managment Consultancy starts here*/
.container-managment {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    border-radius: 10px; /* Increased */
    overflow: visible; /* Changed from hidden */
    gap: 20px; /* Added spacing */
}

.text-managment {
    flex: 1;
    padding: 20px; /* Reduced for better spacing */
}

.text-managment h1 {
    color: red;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.text-managment p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

.image-managment {
    flex: 1;
    text-align: center;
}

.image-managment img {
    max-width: 100%;
    height: auto;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 900px) {
    .container-managment {
        flex-direction: column;
        text-align: center;
        padding: 20px; /* Reduce padding */
    }

    .text-managment {
        padding: 10px;
    }

    .text-managment h1 {
        font-size: 1.8rem;
    }

    .image-managment img {
        max-width: 90%;
    }
}
/*Managment Consultancy ends here*/

/*Market Support starts here*/
.container-marketing {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    border-radius: 10px; /* Increased */
    overflow: visible; /* Changed from hidden */
    gap: 20px; /* Added spacing */
}

.text-marketing {
    flex: 1;
    padding: 30px;
}

.text-marketing h1 {
    color: red;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.text-marketing p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

.text-marketing p:last-child {
    color: #333;
}

.image-marketing{
    flex-direction: column;
}

.image0-marketing {
    flex: 1;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.image0-marketing img {
    max-width: 100%;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

.image1-marketing {
    flex: 1;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.image1-marketing img {
    max-width: 100%;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 900px) {
    .container-marketing {
        flex-direction: column;
        text-align: center;
    }

    .text-marketing {
        padding: 20px;
    }

    .text-marketing h1 {
        font-size: 1.8rem;
    }

    .image-marketing img {
        max-width: 90%;
    }
}
/*Market Support ends here*/

/*Creative Advertising and Promotion starts here*/
.container-ad {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.text-ad {
    flex: 1;
    padding: 30px;
}

.text-ad h1 {
    color: red;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.text-ad p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

.text-ad p:last-child {
    color: #333;
}

.image-ad {
    flex: 1;
    text-align: center;
    position: relative;
}

.image-ad img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 900px) {
    .container-ad {
        flex-direction: column;
        text-align: center;
    }

    .text-ad {
        padding: 20px;
    }

    .text-ad h1 {
        font-size: 1.8rem;
    }

    .image-ad img {
        max-width: 90%;
    }
}
/*Creative Advertising and Promotion ends here*/


/*Sales Training & Motivation*/
/* Writeup Section */
.stm-content {
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.writeup h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
    
}

/* What We Do Section */
.what-we-do {
    display: flex;
    align-items: top;
    justify-content: space-between;
    margin: 30px 20px;
}

.what-we-do-content0 {
    width: 50%;
    display: row;
    
}

.what-we-do h1 {
    font-size: 30px;
    color: red;
    position: relative;
    display: inline-block;
    padding-bottom: 45px;
}

.what-we-do p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #444;
}

/* Image Section Next to What We Do */
.what-we-do-images {
    width: 65%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.what-we-do-images img {
    width: 100%;
    max-width: 300px;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Training Tools Section */
.training-tools {
    text-align: left;
    max-width: 800px;
    margin: 30px;
}

.training-tools h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: red;
}

.training-tools p {
    font-size: 20px;
    color: #444;
    line-height: 1.5;
}

/* User-Friendly Training Products Link */
.training-products-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 20px;
}

.training-products-link a {
    text-decoration: none;
    font-weight: bold;
    color: grey;
    display: flex;
    align-items: center;
    font-size: 25px;
}

.training-products-link a:hover {
    color: red;
}

.training-products-link i {
    margin-left: 10px;
    font-size: 20px;
    color: #007BFF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .what-we-do {
        flex-direction: column;
        align-items: flex-start;
    }

    .what-we-do-content,
    .what-we-do-images {
        width: 100%;
        text-align: center;
    }

    .what-we-do-images {
        justify-content: center;
    }
}

/* Training Programs start Section */
.training-programs {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Align vertically */
    margin-top: 30px; /* Add space above */
    text-align: center;
    width: 100%;
}

.training-programs img {
    max-width: 100%; /* Make it responsive */
    height: auto;
    border-radius: 10px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add shadow */
}

@media (max-width: 768px) {
    .training-programs img {
        width: 90%; /* Adjust width on mobile */
    }
}
/* Training Programs ends Section */

/*Our Assessment centers start here*/
/* Main Content */
.use-of-assessment-center h2 {
    font-size: 28px;
    color: red;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: left; /* Align headings with content */
    padding-left: 20px; /* Adjust alignment */
}

/* Benefits Section - Boxed Layout */
.use-of-assessment-center-content {
    padding: 30px; 
    margin: 0 auto 30px auto; /* Center the box */
    max-width: 90%; /* Restrict width */
    text-align: left; /* Ensure all content is left-aligned */
}

/* List Styling */
.use-of-assessment-center-content ul {
    list-style-type: none;
    padding: 0;
    margin-left: 20px; /* Align list with heading */
}

.use-of-assessment-center-content li p {
    font-size: 18px;
    line-height: 1.5;
    text-align: left; /* Align text with heading */
    color: #444;
    padding-left: 0; /* Remove additional padding */
}

/* Assessment Center Section */
.assessment-center {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 30px 20px;
}

/* Left Side - Content */
.assessment-center-content {
    width: 50%;
}

/* Headings */
.assessment-center-content h2 {
    font-size: 28px;
    color: red;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: left; /* Align heading with content */
    padding-left: 20px;
}

/* List Styling */
.assessment-center-content ul {
    list-style-type: none;
    padding: 0;
    margin-left: 20px; /* Ensure lists are aligned with headings */
}

.assessment-center-content li p {
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
    color: #444;
}

/* Right Side - Images */
.assessment-center-photos {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.assessment-center-photos img {
    width: 100%;
    max-width: 450px;
    height: auto;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.assessment-center-photos img:hover {
    transform: scale(1.05);
}

/* Evaluation Section */
.evaluvation-assessment-center {
    padding: 20px;
}

.evaluvation-assessment-center h2 {
    color: red;
    font-size: 26px;
    margin-bottom: 15px;
    text-align: left;
    padding-left: 20px;
}

.evaluvation-assessment-center li p {
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
    color: #444;
    margin-left: 20px; /* Align list items properly */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .assessment-center {
        flex-direction: column;
        align-items: center;
    }

    .assessment-center-content,
    .assessment-center-photos {
        width: 100%;
        text-align: left;
    }

    .assessment-center-photos img {
        max-width: 80%;
    }

    .assessment-center-content h2,
    .evaluvation-assessment-center h2 {
        font-size: 26px;
    }

    .use-of-assessment-center-content {
        max-width: 90%; /* Adjust width for medium screens */
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .assessment-center-content h2,
    .evaluvation-assessment-center h2 {
        font-size: 24px;
    }

    .assessment-center-content li p,
    .evaluvation-assessment-center li p {
        font-size: 16px;
    }

    .assessment-center-photos img {
        max-width: 90%;
    }

    .use-of-assessment-center-content {
        max-width: 95%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .assessment-center-content h2,
    .evaluvation-assessment-center h2 {
        font-size: 22px;
    }

    .assessment-center-content li p,
    .evaluvation-assessment-center li p {
        font-size: 14px;
    }

    .assessment-center-photos img {
        max-width: 100%;
    }

    .use-of-assessment-center-content {
        max-width: 100%;
        padding: 10px;
    }
}

/*Our Assessment centers ends here*/


/*our training start products*/
.table table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}
th {
    background-color: #eae4e4;
}
h2{
    color: red;
    padding: 25px;
}
/*our training ends products*/

/*footer design starts here**/
footer {
        position: relative;
        width: 100%;
        background: ghostwhite;
        color: black;
        text-align: center;
        line-height: 0.5;
}

footer .footer-info p{
    text-align: center;
    padding: 0%;
}

/* Ensure the page has enough height to push the footer down */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1; /* Pushes the footer to the bottom */
}

.footer-info p:last-child {
    color: #bbb; /* Light grey color */
    font-size: 14px; /* Adjust size for readability */
    text-align: center; /* Center the text */
}

.footer-info p:last-child a {
    color: #b9b7b7c9; /* Slightly brighter grey for the link */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Make name stand out */
    transition: color 0.3s ease-in-out; /* Smooth hover effect */
}

.footer-info p:last-child a:hover {
    color: #515155; /* Change color to white on hover */
    text-decoration: underline; /* Add underline on hover */
}

/*footer design ends here*/

/* BPO page start here*/
.description {
    display: flex;
    align-items: center; /* Align text in the center */
    justify-content: space-between;
    padding: 200px 10%;
    font-size: large;
    color: #333;
}
/* BPO page ends here*/


/*Property Managment starts here*/
/* Property Management Container */
.container-property {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    border-radius: 10px; /* Rounded corners */
    overflow: visible; /* Keeps content visible */
    gap: 20px; /* Space between text and image */
}

/* Left Side - Text Content */
.text-property {
    flex: 1;
    padding: 30px;
}

.text-property h3 {
    color: red;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.text-property p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

.text-property p:last-child {
    color: #333;
}

/* Right Side - Image */
.image-property {
    flex-direction: column;
}

.image0-property {
    flex: 1;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.image0-property img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

/* 📱 Responsive Design */
@media (max-width: 900px) {
    .container-property {
        flex-direction: column;
        text-align: center;
    }

    .text-property {
        padding: 20px;
    }

    .text-property h3 {
        font-size: 1.8rem;
    }

    .image0-property img {
        max-width: 90%;
    }
}

/*Property Management ends here*/ 

/*PECB starts here*/
/* PECB-Ebenezer logo */
.pecb-ebenezer-img {
    display: flex;  
    align-items: center;  
    justify-content: center;  
    gap: 20px;  
    overflow: hidden;  /* Prevents overflow while animating */
}

.image {
    max-width: 100%;  /* Responsive width */
    opacity: 0;  /* Initially hidden */
    transform: scale(0.8);  /* Shrink effect */
    animation: morph-slide 1.5s ease-out forwards;
}

.image-left {
    transform: translateX(-100%) scale(0.8);  /* Starts from the left */
}

.image-right {
    transform: translateX(100%) scale(0.8);  /* Starts from the right */
}

@keyframes morph-slide {
    0% {
        opacity: 0;
        transform: translateX(0) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(0) scale(1.05);  /* Slight zoom effect */
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}



/* Main Container */
.pecb-ebenezer {
    max-width: 85%;
    background: #fff;
    margin: 20px auto;
    padding: 30px;
    text-align: center;
}

/* Intro Paragraph */
.pecb-about p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* List Styling */
.pecb-about ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

/* List Items */
.pecb-about ul li {
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

/* Hover Effect */
.pecb-about ul li:hover {
    background: black;
    color: white;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pecb-ebenezer {
        padding: 20px;
        max-width: 95%;
    }

    .pecb-about p {
        font-size: 16px;
    }

    .pecb-about ul {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .pecb-about ul {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .pecb-about ul li {
        font-size: 14px;
        padding: 10px;
    }
}
/*PECB ends here*/

/*logo slidder*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

.wrapper1 {
  width: 90%;
  max-width: 1536px;
  margin-inline: auto;
  position: relative;
  height: 150px;
  margin-top: 20rem;/*margin*/
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
}

@keyframes scrollLeft {
  to {
    left: -200px;
  }
}

.item0 {
    width: 200px;
    height: 150px;
    background-color: white;
    border-radius: 7px;
    position: absolute;
    left: max(calc(210px * 28), 100%);
    animation-name: scrollLeft;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    overflow: hidden; /* Prevent image overflow */
    display: flex;
    justify-content: center; /* Center the logo horizontally */
    align-items: center; /* Center the logo vertically */
  }
  
  .item0 img {
    max-width: 100%; /* Make sure the image doesn’t exceed the .item width */
    max-height: 100%; /* Make sure the image doesn’t exceed the .item height */
    width: auto; /* Maintain aspect ratio */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Keep the image within bounds */
    display: block;
  }

.item1 {
  animation-delay: calc(30s / 29 * (29 - 1) * -1);
}

.item2 {
  animation-delay: calc(30s / 29 * (29 - 2) * -1);
}

.item3 {
  animation-delay: calc(30s / 29 * (29 - 3) * -1);
}

.item4 {
  animation-delay: calc(30s / 29 * (29 - 4) * -1);
}

.item5 {
  animation-delay: calc(30s / 29 * (29 - 5) * -1);
}

.item6 {
  animation-delay: calc(30s / 29 * (29 - 6) * -1);
}

.item7 {
  animation-delay: calc(30s / 29 * (29 - 7) * -1);
}

.item8 {
  animation-delay: calc(30s / 29 * (29 - 8) * -1);
}

.item9 {
    animation-delay: calc(30s / 29 * (29 - 9) * -1);
  }
  
  .item10 {
    animation-delay: calc(30s / 29 * (29 - 10) * -1);
  }
  
  .item11 {
    animation-delay: calc(30s / 29 * (29 - 11) * -1);
  }
  
  .item12 {
    animation-delay: calc(30s / 29 * (29 - 12) * -1);
  }
  
  .item13 {
    animation-delay: calc(30s / 29 * (29 - 13) * -1);
  }
  
  .item14 {
    animation-delay: calc(30s / 29 * (29 - 14) * -1);
  }
  
  .item15 {
    animation-delay: calc(30s / 29 * (29 - 15) * -1);
  }
  
  .item16 {
    animation-delay: calc(30s / 29 * (29 - 16) * -1);
  }
  .item17 {
  animation-delay: calc(30s / 29 * (29 - 17) * -1);
}

.item18 {
  animation-delay: calc(30s / 29 * (29 - 18) * -1);
}

.item19 {
  animation-delay: calc(30s / 29 * (29 - 19) * -1);
}

.item20 {
  animation-delay: calc(30s / 29 * (29 - 20) * -1);
}

.item21 {
  animation-delay: calc(30s / 29 * (29 - 21) * -1);
}

.item22 {
  animation-delay: calc(30s / 29 * (29 - 22) * -1);
}

.item23 {
  animation-delay: calc(30s / 29 * (29 - 23) * -1);
}

.item24 {
  animation-delay: calc(30s / 29 * (29 - 24) * -1);
}

.item25 {
    animation-delay: calc(30s / 29 * (29 - 25) * -1);
  }
  
  .item26 {
    animation-delay: calc(30s / 29 * (29 - 26) * -1);
  }
  
  .item27 {
    animation-delay: calc(30s / 29 * (29 - 27) * -1);
  }

  .item28 {
    animation-delay: calc(30s / 29 * (29 - 28) * -1);
  }

  .item29 {
    animation-delay: calc(30s / 29 * (29 - 29) * -1);
  }


/*  consultant team */
.team-section {
    text-align: center;
    padding: 50px 20px;
    background-color: transparent;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: red;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #333;
}

.team-member h3 {
    font-size: 18px;
    margin-top: 10px;
    color: #333;
}

.team-member p {
    font-size: 14px;
    color: #555;
}



